home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / perl / sprite / stat.t < prev   
Encoding:
Text File  |  1991-11-14  |  5.6 KB  |  192 lines

  1. #!./perl
  2.  
  3. # $RCSfile: stat.t,v $$Revision: 1.3 $$Date: 91/11/14 12:52:08 $
  4.  
  5. print "1..56\n";
  6.  
  7. chop($cwd = `pwd`);
  8.  
  9. $DEV = `ls -l /dev`;
  10.  
  11. unlink "Op.stat.tmp";
  12. open(FOO, ">Op.stat.tmp");
  13.  
  14. $junk = `ls Op.stat.tmp`;    # hack to make Apollo update link count
  15.  
  16. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  17.     $blksize,$blocks) = stat(FOO);
  18. if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
  19. #if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
  20. print "ok 2\n";
  21.  
  22. print FOO "Now is the time for all good men to come to.\n";
  23. close(FOO);
  24.  
  25. sleep 2;
  26.  
  27. `rm -f Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
  28.  
  29. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  30.     $blksize,$blocks) = stat('Op.stat.tmp');
  31.  
  32. if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
  33. if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
  34.     print "ok 4\n";
  35. }
  36. else {
  37.     print "not ok 4\n";
  38. }
  39. print "#4    :$mtime: != :$ctime:\n";
  40.  
  41. `rm -f Op.stat.tmp`;
  42. `touch Op.stat.tmp`;
  43.  
  44. if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
  45. if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
  46.  
  47. `echo hi >Op.stat.tmp`;
  48. if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
  49. if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
  50.  
  51. unlink 'Op.stat.tmp';
  52. $olduid = $>;        # can't test -r if uid == 0
  53. `echo hi >Op.stat.tmp`;
  54. chmod 0,'Op.stat.tmp';
  55. eval '$> = 1;';        # so switch uid (may not be implemented)
  56. if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
  57. if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
  58. eval '$> = $olduid;';        # switch uid back (may not be implemented)
  59. print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
  60. if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
  61.  
  62. foreach ((12,13,14,15,16,17)) {
  63.     print "ok $_\n";        #deleted tests
  64. }
  65.  
  66. chmod 0700,'Op.stat.tmp';
  67. if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
  68. if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
  69. if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
  70.  
  71. if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
  72. if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
  73.  
  74. if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
  75. if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
  76.  
  77. if (`ls -l perl` =~ /^l.*->/) {
  78.     if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
  79. }
  80. else {
  81.     print "ok 25\n";
  82. }
  83.  
  84. if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
  85.  
  86. if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
  87. `rm -f Op.stat.tmp Op.stat.tmp2`;
  88. if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
  89.  
  90. if ($DEV !~ /\nc.* (\S+)\n/)
  91.     {print "ok 29\n";}
  92. elsif (-c "/dev/$1")
  93.     {print "ok 29\n";}
  94. else
  95.     {print "not ok 29\n";}
  96. if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
  97.  
  98. if ($DEV !~ /\ns.* (\S+)\n/)
  99.     {print "ok 31\n";}
  100. elsif (-S "/dev/$1")
  101.     {print "ok 31\n";}
  102. else
  103.     {print "not ok 31\n";}
  104. if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
  105.  
  106. if ($DEV !~ /\nb.* (\S+)\n/)
  107.     {print "ok 33\n";}
  108. elsif (-b "/dev/$1")
  109.     {print "ok 33\n";}
  110. else
  111.     {print "not ok 33\n";}
  112. if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
  113.  
  114. $cnt = $uid = 0;
  115.  
  116. die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
  117. chdir '/usr/bin' || die "Can't cd to /usr/bin";
  118. while (defined($_ = <*>)) {
  119.     $cnt++;
  120.     $uid++ if -u;
  121.     last if $uid && $uid < $cnt;
  122. }
  123. chdir $cwd || die "Can't cd back to $cwd";
  124.  
  125. # I suppose this is going to fail somewhere...
  126. if ($uid > 0 && $uid < $cnt) {print "ok 35\n";} else {print "not ok 35\n";}
  127.  
  128. # Sprite doesn't have /dev/tty.
  129. #
  130.  
  131. #unless (open(tty,"/dev/tty")) {
  132. #    print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
  133. #}
  134. #if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
  135. #if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
  136. #close(tty);
  137. #if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
  138.  
  139. foreach ((36,37,38)) {
  140.     print "ok $_\n";        #deleted tests
  141. }
  142.  
  143. open(null,"/dev/null");
  144. if (! -t null || -e '/xenix') {print "ok 39\n";} else {print "not ok 39\n";}
  145. close(null);
  146. if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
  147.  
  148. # These aren't strictly "stat" calls, but so what?
  149.  
  150. if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  151. if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  152.  
  153. if (-B './perl') {print "ok 43\n";} else {print "not ok 43\n";}
  154. if (! -T './perl') {print "ok 44\n";} else {print "not ok 44\n";}
  155.  
  156. #
  157. # Sprite doesn't have a "standard" stdio library, so these tests
  158. # won't work.
  159. #
  160.  
  161. #open(foo,'op/stat.t');
  162. #if (-T foo) {print "ok 45\n";} else {print "not ok 45\n";}
  163. #if (! -B foo) {print "ok 46\n";} else {print "not ok 46\n";}
  164. #$_ = <foo>;
  165. #if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
  166. #if (-T foo) {print "ok 48\n";} else {print "not ok 48\n";}
  167. #if (! -B foo) {print "ok 49\n";} else {print "not ok 49\n";}
  168. #close(foo);
  169.  
  170. foreach ((45,46,47,48,49)) {
  171.     print "ok $_\n";        #deleted tests
  172. }
  173.  
  174.  
  175. open(foo,'op/stat.t');
  176. $_ = <foo>;
  177. if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
  178. #if (-T foo) {print "ok 51\n";} else {print "not ok 51\n";}
  179. #if (! -B foo) {print "ok 52\n";} else {print "not ok 52\n";}
  180. #seek(foo,0,0);
  181. #if (-T foo) {print "ok 53\n";} else {print "not ok 53\n";}
  182. #if (! -B foo) {print "ok 54\n";} else {print "not ok 54\n";}
  183. close(foo);
  184.  
  185. foreach ((51,52,53,54)) {
  186.     print "ok $_\n";        #deleted tests
  187. }
  188.  
  189. if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
  190. if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}
  191.